[index]
Repeat Until
Syntax
repeat until <condition> end repeat
Description
The repeat until control statement repeats a part of a script until a specific condition is true. The condition must supply a value of true or false.
Notes
Examples
on mouseUp
put 0 into total repeat until total >50
ask "enter next number" add it to total
put total
end repeat
This text has been mechanically extracted from the Oracle Media Objects 1.0.4.9 MediaTalk Reference, © 1995 Oracle Corporation, and is provided here solely for educational/historical purposes.